home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 06 General Architectures / 04 Christian / chased.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-09-16  |  355 b   |  31 lines

  1.  
  2.  
  3. #ifndef _Chased_H_
  4. #define _Chased_H_
  5.  
  6. #include "ieexec.h"
  7.  
  8. class Character;
  9.  
  10. class Chased : public IEExec
  11. {
  12.  
  13. public:
  14.  
  15.     Chased();
  16.  
  17.     void init   ( IEOwner * owner );
  18.     bool update ();
  19.  
  20.     IEOwner * getOwner ();
  21.  
  22.     const char * getName();
  23.  
  24. private:
  25.     std::string m_name;
  26.     Character * m_owner;
  27.     
  28. };
  29.  
  30. #endif
  31.